All Questions
Tagged with client-serverarchitectural-patterns
5 questions
3votes
0answers
924views
MVC vs Layered vs Client-Server
On this book (Software Architecture, 10th Edition by Ian Sommerville, ISBN: 9781292096131), the following architectural patterns are presented (Chapter 6, 6.3, p175): MVC Layered Client-server ...
1vote
1answer
72views
System design : Implementing a common service process with a http server
I have a huge DB,and CalculateTasksFromDB() takes a long time (and lots of memory). Once that method is done,there is a huge list of tasks. There are worker processes in the system (at any point in ...
2votes
1answer
197views
Multiple clients of the same server - how to refactor while keeping the benefits of current architecture?
Background I have a system that comprises of 3 components: a web application that displays data and allows data manipulation by users (React) a server application which serves the data to the web ...
0votes
2answers
206views
Is peer-to-peer a variation of client-server architectural pattern?
According to Software Engineering: Theory and Practice book by Pfleeger and Atlee, Peer-to-peer architectural style is different than Client-Server architectural pattern. But in Mocrsoft's Microsoft ...
4votes
1answer
1kviews
Onion architecture in client-server application
I'm staring new project, cross-platform. I want to use onion architecture there. It will be a simple game (tic tac toe), just for education purposes. This app will be client-server type. Now, I read ...